projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4dea6d9
)
(Fraise_frame): Do like the documentation says, and make
author
Richard M. Stallman
<rms@gnu.org>
Wed, 10 Nov 1993 20:09:54 +0000
(20:09 +0000)
committer
Richard M. Stallman
<rms@gnu.org>
Wed, 10 Nov 1993 20:09:54 +0000
(20:09 +0000)
the frame visible first.
src/frame.c
patch
|
blob
|
history
diff --git
a/src/frame.c
b/src/frame.c
index 6c8ed6b2d2a3853f602c67f6bf5f17169ad9151a..d63a4726047da130a1080d5f154cfc4439f6fe08 100644
(file)
--- a/
src/frame.c
+++ b/
src/frame.c
@@
-972,7
+972,10
@@
doesn't support multiple overlapping frames, this function does nothing.")
Lisp_Object frame;
{
CHECK_LIVE_FRAME (frame, 0);
-
+
+ /* Do like the documentation says. */
+ Fmake_frame_visible (frame);
+
if (frame_raise_lower_hook)
(*frame_raise_lower_hook) (XFRAME (frame), 1);